From 59d9334234be6e69bcd02af89727aae432f74b69 Mon Sep 17 00:00:00 2001 From: "mjw@wray-m-3.hpl.hp.com" Date: Mon, 12 Jul 2004 15:54:59 +0000 Subject: [PATCH] bitkeeper revision 1.1062.3.5 (40f2b453MO6YQxYlbqwoeVouYIGBEw) Add missing arg to xfr calls. --- tools/python/xen/xend/XendMigrate.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/python/xen/xend/XendMigrate.py b/tools/python/xen/xend/XendMigrate.py index 543c1cbd42..216ed4432c 100644 --- a/tools/python/xen/xend/XendMigrate.py +++ b/tools/python/xen/xend/XendMigrate.py @@ -134,11 +134,11 @@ class XfrdInfo: # print >>sys.stdout, "Error unpausing domain:", self.src_dom return None - def xfr_progress(self, val): + def xfr_progress(self, xfrd, val): print 'xfr_progress>', val return None - def xfr_vm_pause(self, val): + def xfr_vm_pause(self, xfrd, val): print 'xfr_vm_pause>', val try: vmid = sxp.child0(val) @@ -147,7 +147,7 @@ class XfrdInfo: val = errno.EINVAL return ['xfr.err', val] - def xfr_vm_unpause(self, val): + def xfr_vm_unpause(self, xfrd, val): print 'xfr_vm_unpause>', val try: vmid = sxp.child0(val) @@ -156,7 +156,7 @@ class XfrdInfo: val = errno.EINVAL return ['xfr.err', val] - def xfr_vm_suspend(self, val): + def xfr_vm_suspend(self, xfrd, val): print 'xfr_vm_suspend>', val try: vmid = sxp.child0(val) -- 2.30.2